home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / coding / dsp / aib2xmpl.exe / AIC_C.CMD < prev    next >
OS/2 REXX Batch file  |  1991-07-31  |  1KB  |  32 lines

  1. -c    /*                      LINK USING C CONVENTIONS        */
  2. -m aic_cc.map
  3. -o aic_cc.out
  4. -u RESET                                   /* LINK IN THE RESET VECTORS     */
  5. aic_cc.obj aic_c.obj
  6. -lrts.lib                   /* GET RUN-TIME SUPPORT        */
  7. -lflib.lib                   /* GET FLOATING POINT SUPPORT    */
  8. /*--------------------------------------------------------------------------*/
  9. /*  MEMORY SPECIFICATION                                                    */
  10. /*  Block B0 is configured as data memory (CNFD) and MP/MC- = 1             */
  11. /*  80h--1FFh is not configured.                        */
  12. /*--------------------------------------------------------------------------*/
  13. MEMORY
  14. {
  15.     PAGE 0 :                             /* PROGRAM */
  16.         Vect    : origin = 0     , length = 020h
  17.         Ext_Prog    : origin = 0200h , length = 0FE00h
  18.     PAGE 1 :
  19.         Regs    : origin =    0h , length =   020h     /* DATA    */
  20.         Ext_RAM    : origin = 0400h , length = 0FC00h
  21. }
  22. /*--------------------------------------------------------------------------*/
  23. /* SECTIONS ALLOCATION                                                      */
  24. /*--------------------------------------------------------------------------*/
  25. SECTIONS
  26. {
  27.      ORG    : { } >     Vect  PAGE 0        /* Vector table                 */
  28.     .text   : { } > Ext_Prog  PAGE 0        /* CODE                         */
  29.     .data   : { } > Ext_RAM   PAGE 1        /* INITIALIZATION DATA TABLES   */
  30.     .bss    : { } > Ext_RAM   PAGE 1        /* GLOBAL VARS, STACK, HEAP     */
  31. }
  32.